body {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    background: black;
    color: #60FAF8;
    overflow-x: hidden;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        transparent 0%,
        transparent 95%,
        rgba(0, 255, 0, 0.3) 96%,
        rgba(0, 255, 0, 0.3) 100%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
    background-size: 100% 20px;
    animation: moveGrid 90s linear infinite;
    z-index: -1;
}

@keyframes moveGrid {
    from {
        background-position: 0 100%;
    }
    to {
        background-position: 0 0;
    }
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
}

.hero-text {
    max-width: 50%;
    text-align: left;
}

.hero h1 {
    font-family: 'Doto', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 20px;
    color: #C1F130;
}

.hero p {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin: 10px 0 40px;
    color: #3EE0C3;
}

.hero form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.hero-input-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.hero input {
    padding: 8px;
    font-size: 1rem;
    border: 2px solid #3EE0C3;
    border-radius: 5px;
    width: 100%;
    background-color: rgba(24, 54, 43, 0.8);
    color: #C1F130;
}

.hero button {
    padding: 8px 16px;
    font-size: 1rem;
    background-color: #C1F130;
    color: #18362B;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.hero button:hover {
    background-color: #60FAF8;
    color: #C1F130;
}

.hero-image {
    max-width: 40%;
    height: auto;
}

.hero-image img {
    width: 100%;
    max-height: 600px;
    border-radius: 10px;
    object-fit: contain;
}


/*//////////////response///////////*/


#response {
    margin-top: 20px;
    font-size: 1.2rem;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 100%;
    height: 150px;
    overflow-wrap: break-word;
    padding: 10px;
    border: 2px solid #3EE0C3;
    border-radius: 5px;
    background-color: rgba(24, 54, 43, 0.8);
}

#response .response-line {
    margin: 5px 0;
}

#response .response-line span {
    font-weight: bold;
    color: #C1F130;
}

#response.success {
    color: #00FF00;
}

#response.failure {
    color: #FF0000;
}


/*//////////////achievements///////////*/


.achievements {
    text-align: center;
    padding: 20px 10px;
    background: #18362B;
    color: #60FAF8;
}

.achievement-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.achievement-item {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #3EE0C3;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 200px;
}

.achievement-item h3 {
    font-size: 2rem;
    margin: 0;
    color: #C1F130;
}

.achievement-item p {
    font-size: 1rem;
    margin: 10px 0 0;
    color: #3EE0C3;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-image {
        max-width: 80%;
        margin: 0;
    }

    .hero-image img {
        max-height: 400px;
    }

    .achievement-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .achievement-item {
        width: 75%;
    
    }
}


/*///////////// features //////////////////*/

.features {
    text-align: left;
    padding: 20px 15px;
    background: black;
    color: #60FAF8;
    font-family: 'Doto', monospace;
    height: 450px; /* Fixed height */
    border: 2px solid #3EE0C3;
    position: relative;
    font-size: 1rem;
    overflow-y: auto; /* Allow scrolling if needed */
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    color: #C1F130;
    margin-bottom: 15px;
}

.terminal-line {
    white-space: pre-wrap;
    overflow-wrap: break-word;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #C1F130;
    background-color: rgba(24, 54, 43, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
}


/*///////////// How To //////////////////*/


.how-to {
    padding: 50px 20px;
    background: #18362B;
    color: #60FAF8;
    text-align: left;
    font-family: 'Orbitron', sans-serif;
}

.how-to h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #C1F130;
    margin-bottom: 30px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.step {
    background: rgba(24, 54, 43, 0.8);
    border: 2px solid #3EE0C3;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.step h3 {
    font-size: 1.8rem;
    color: #C1F130;
    margin-bottom: 15px;
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #3EE0C3;
}




.download {
    padding: 50px 20px;
    background: black;
    color: #60FAF8;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.download h2 {
    font-size: 2.5rem;
    color: #C1F130;
    margin-bottom: 20px;
}

.download p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #3EE0C3;
}

.download button {
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: #C1F130;
    color: #18362B;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Doto', sans-serif;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.download button:hover {
    background-color: #60FAF8;
    color: #C1F130;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}

#warningMessage {
    margin-top: 20px;
    font-size: 1rem;
    color: #FF0000;
    display: none; /* Initially hidden */
    animation: fadeIn 1s ease-in-out;
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}




.project-pickle {
    padding: 50px 20px;
    background: #18362B;
    color: #60FAF8;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.project-pickle h2 {
    font-size: 2.5rem;
    color: #C1F130;
    margin-bottom: 20px;
}

.project-pickle p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3EE0C3;
    margin-bottom: 20px;
}

.project-pickle .teaser {
    font-size: 1.2rem;
    font-weight: bold;
    color: #C1F130;
    text-shadow: 0 0 10px rgba(193, 241, 48, 0.8);
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 10px rgba(193, 241, 48, 0.8);
    }
    50% {
        text-shadow: 0 0 20px rgba(193, 241, 48, 1);
    }
    100% {
        text-shadow: 0 0 10px rgba(193, 241, 48, 0.8);
    }
}




.site-footer {
    padding: 20px;
    background: black;
    color: #60FAF8;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    border-top: 2px solid #3EE0C3;
}

.footer-content p {
    margin: 10px 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #3EE0C3;
}

.footer-nav {
    margin: 20px 0;
}

.footer-nav a {
    margin: 0 10px;
    color: #C1F130;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #60FAF8;
}

.copyright {
    font-size: 0.9rem;
    color: #3EE0C3;
    margin-top: 10px;
}
